home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / SYS / s / Start-Arexx < prev    next >
Text File  |  1996-09-26  |  839b  |  27 lines

  1. ; ========================     Start-ARexx     ==========================
  2. ; Loads the libraries required by ARexx and starts the ARexx server.
  3. ; This could be placed in your startup-sequence to activate ARexx.
  4.  
  5. ; N.B. The double-precision math library mathieeedoubbas.library must
  6. ; be in the LIBS: directory.  If this is not convenient, copy it into
  7. ; this disk's :libs directory and uncomment the following line ...
  8. ; ARexx_Disk:c/loadlib ARexx_Disk:libs/mathieeedoubbas.library
  9.  
  10.   loadlib libs:rexxsyslib.library
  11.   if error
  12.      echo "Couldn't load rexxsyslib.lbrary"
  13.      quit 20
  14.      endif
  15.   loadlib libs:rexxsupport.library
  16.  
  17. ; Start the ARexx server if it's not already active
  18.   waitforport -i AREXX
  19.   if warn
  20.      rexxmast
  21.      waitforport AREXX
  22.      endif
  23.  
  24. ; Make the support library available
  25.   rxlib rexxsupport.library 0 -30 0
  26.  
  27.